home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 551-575 / disk_575 / reqtools / include13 / utility / hooks.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  452b  |  26 lines

  1. #ifndef UTILITY_HOOKS_H
  2. #define UTILITY_HOOKS_H
  3. /*
  4. **   $Filename: utility/tagitem.i $
  5. **   $Release: 1.0 $
  6. **
  7. **   Clone of 2.0 include file 'utility/hooks.h'
  8. */
  9.  
  10. #ifndef EXEC_TYPES_H
  11. #include "exec/types.h"
  12. #endif /* EXEC_TYPES_H */
  13.  
  14. #ifndef EXEC_NODES_H
  15. #include "exec/nodes.h"
  16. #endif /* EXEC_NODES_H */
  17.  
  18. struct Hook {
  19.    struct MinNode h_MinNode;
  20.    ULONG (*h_Entry)();
  21.    ULONG (*h_SubEntry)();
  22.    APTR h_Data;
  23.    };
  24.  
  25. #endif /* UTILITY_HOOKS_H */
  26.